using Python 3.8.10
If the version does not exist or if the version fails, use the latest version.
| Package | Version | Package | Version |
|---|---|---|---|
| librosa | 0.8.1 | plotly | 5.3.1 |
| matplotlib | 3.4.3 | scikit-learn | 1.1.3 |
| numba | 0.53.1 | scipy | 1.7.1 |
| numpy | 1.21.2 | seaborn | 0.11.2 |
| pandas | 1.3.2 | sklearn | 0.0 |
- Check the existence of the file
pip show (Package) - Install the version you want
pip install (Package)==x.xx.x
[ Example ]
pip show librosa
pip install librosa==0.8.1
- Verify Python Installation
- Use pip3 instead of pip
pip3 install (Package)==0.8.1 - When that version does not exist
pip install (Package)pip3 install (Package) - Setting Environment Variables
- error
No module named 'pip'
[ Example ]
pip install numba --upgrade
pip install matplotlib --upgrade
ModuleNotFoundError: No module named 'sklearn'
Document helped 1
Document helped 1