Skip to content

Instantly share code, notes, and snippets.

@nktstudios
Created May 21, 2020 11:01
Show Gist options
  • Save nktstudios/bf24b9a93154514a999362bd64588bc3 to your computer and use it in GitHub Desktop.
Save nktstudios/bf24b9a93154514a999362bd64588bc3 to your computer and use it in GitHub Desktop.
Commands to build Python Wheels
1. ubuntu1804
2. sudo apt-get upgrade
3. python3 --version
4. sudo apt update
5. sudo apt-get upgrade
6. sudo apt install software-properties-common
7. sudo add-apt-repository ppa:deadsnakes/ppa
8. sudo apt install python3.8
9. python 3.8 --version
10. sudo apt install python3-pip
11. pip3 --version
##Installing wheels
12. python3.8 -m pip install --system --target ./ pandas
13. python3.8 -m pip install --system --target ./ numpy
14. python3.8 -m pip install --system --target ./ requests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment