Installation on Ubuntu #58
helena-intel
started this conversation in
General
Replies: 2 comments 6 replies
-
Ok, this saved me time again, and for others this is the error message if you are using Python 3.8...
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
You may need to install some additional libraries on Ubuntu Linux. These steps work on a clean install of Ubuntu Desktop 20.04, and should also work on Ubuntu 18.04 and 20.10, and on Ubuntu Server..
After this, you can follow the instructions in the README. In step 2, make sure to type
python3 -m venv openvino_env
.python3
will point to the right Python version.On Ubuntu 18.04,
python3-dev
installs the required libraries for the system default version of Python. On Ubuntu 18 this is Python 3.6, on Ubuntu 20.04, Python 3.8. If you also installed other versions of Python, it is recommended to use the full path the to system default Python:/usr/bin/python3.6 -m venv openvino_env
on Ubuntu 18,/usr/bin/python3.8 -m venv openvino_env
on Ubuntu 20.Beta Was this translation helpful? Give feedback.
All reactions