I am trying to setup a python environment using venv on a Linux remote machine that I am not an admin for.(cannot use sudo) When I build my Python, the final product is missing fundamental core packages such as ssl, or _sqlite3. As a result, when I built python, I cannot use pip or ipykernel in VSCode and more.
What I am exploring right now is to install all these build packages locally and then try to build my python again. What I need help with is:
- I am not sure if I can find wget link for all of this packages and where should I start with that.
- Alternative approach to build my python without the need for sudo access.
here is the list of packages I am trying to find wget for:
- build-essential
- libreadline-dev
- libncursesw5-dev
- libssl-dev
- libsqlite3-dev
- tk-dev
- libgdbm-dev
- libc6-dev
- libbz2-dev
- libffi-dev
- zlib1g-dev
Appreciate any and all support.