-
Notifications
You must be signed in to change notification settings - Fork 5
Configure Python Dependencies
Oscar D. Garcia edited this page Apr 2, 2023
·
2 revisions
Open a bash terminal and type the commands below to:
- Update your package information
- Install Python
- Check that Python was installed correctly
$ sudo apt-get update
$ sudo apt-get install python3.8
$ python3 --version
Pip is a python tool that is used to install other packages.
$ python3 -m pip install --user --upgrade pip
$ python3 -m pip --version
$ apt-get install python3-venv
$ pip install pandas
$ pip install notebook
$ jupyter notebook
Written by Oscar Garcia Contact Twitter @ozkary Website ozkary.com