December 2017
Intermediate to advanced
386 pages
10h 42m
English
Open a Terminal window and enter each of the following commands in succession:
pip3 install --user numpy scipy matplotlibpip3 install --user ipython jupyter PyQt5pip3 install --user pandas sympy nose
Make a backup copy of the .bashrc file and open it with a text editor. For example, to use nano, run the following commands in a Terminal window:
cdcp .bashrc .bashrc.scipy.baknano .bashrc
Add the following line at the end of .bashrc:
export PATH="$HOME/.local/bin:$PATH"
Save the file, close the editor, and run the following command from the Terminal window:
source .bashrc
Let's now test the installation. Start Python by running the following command in a Terminal window:
python3
Execute the following lines at the ...
Read now
Unlock full access