The following guide will help you get started with installing python3 and pip3 on your linux( Ubuntu 16.04 ) live USB.
1. First install python 3 from the "deadsnakes" repository from the Python Package Accesories ( PPA )
2. Next up, install pip3 package manager that will allow you to install other useful python libraries such as numpy,seabon ,pandas etc.
3. You can now use pip3 to install non-core python libraries as follows
1. First install python 3 from the "deadsnakes" repository from the Python Package Accesories ( PPA )
- $ sudo add-apt-repository ppa:deadsnakes/ppa
- $ sudo apt-get update
- $ sudo apt-get install python3.6
2. Next up, install pip3 package manager that will allow you to install other useful python libraries such as numpy,seabon ,pandas etc.
- $ sudo apt-get update
- $ sudo apt-get install python3-setuptools
- $ sudo easy_install3 pip
3. You can now use pip3 to install non-core python libraries as follows
- $ sudo pip3 install jupyter
- $ sudo pip3 numpy etc.
Comments
Post a Comment