I'm trying to run a .py script in a remote desktop. I'm trying to import the different modules I need to run the script but I'm unable to as I don't have pip or Anaconda. I've tried installing pip by running the get-pip.py
file but I'm getting the following error:
Could not find a version that satisfies the requirement pip
I've also tried running it using the ensurepip method but the error I then get is:
unable to import setuptools
The only workaround for this is to install that module using pip
, which I do not have.
I then tried using Conda but I'm unable to install Anaconda due to admin rights to the remote server I'm using.
I also tried installing Jupyter notebook but again, wasn't able to due to admin rights.
I've been able to do this no problem in my local machine but not in this remote desktop. I'm also unable to get further admin rights.
Is there another option to get Python modules without using pip
or conda
?