xxxxxxxxxx
To install python modules like pygame pillow numpy just type
pip install pygame
pip install pillow
pip install numpy
etc.
xxxxxxxxxx
#Using the command prompt
#To check if moduale is already installed and version:
!conda list SomeModule #in your Jupyter notebook if using Anaconda.
conda list SomeModule #in the Anaconda prompt.
#To download and install modules and packages:
conda install SomeModule=0.22 #in the Anaconda prompt if using Anaconda
py -m pip install "SomeModule==1.4.2" #in command prompt if using pip
xxxxxxxxxx
pip install (package)
# If the above doesnt work, use:
pip3 install (package)