A Byte of Python 한글판 PDF http://byteofpython-korean.sourceforge.net/byte_of_python.pdf HTML http://byteofpython-korean.sourceforge.net/byte_of_python.html Sourceforge https://sourceforge.net/projects/byteofpython-korean/ 원저 : https://python.swaroopch.com/ 개발/Python 2020.02.24
Tensorflow2.x libnvinfer.so.6 libnvinfer_plugin.so.6 error >>> import tensorflow as tf 2020-02-23 23:40:33.293827: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'libnvinfer.so.6'; dlerror: libnvinfer.so.6: cannot open shared object file: No such file or directory 2020-02-23 23:40:33.293931: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'libnvinfer_plugin.so.. OS/Linux 2020.02.23
Tensorflow install System install $ pip3 install --user --upgrade tensorflow # install in $HOME Verify the install: $ python3 -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))" Virtualenv install (venv) $ pip install --upgrade tensorflow Verify the install: (venv) $ python -c "import tensorflow as tf;print(tf.reduce_sum(tf.random.normal([1000, 1000])))" https://www.tensorflow.org/in.. OS/Linux 2020.02.23
Install TensorFlow 2 # Requires the latest pip $ pip install --upgrade pip # Current stable release for CPU and GPU $ pip install tensorflow # Or try the preview build (unstable) $ pip install tf-nightly https://www.tensorflow.org/install OS/Linux 2020.02.23
Ubuntu desktop shortcut 1. editor use gedit doublecmd.desktop --------------------------------------------------------------------------------------- [Desktop Entry] Version=1.0 Type=Application Name=doublecmd Icon=/home/user/app/doublecmd/doublecmd.png Exec=/home/user/app/doublecmd/doublecmd.sh Comment=Double Commander Terminal=false -------------------------------------------------------------------------------------.. OS/Ubuntu 2020.02.19