I am wondering if it is possible, without any problems, to have Python installed on a network drive for use by multiple Windows users who have only read and execute rights. As far as I know, it is possible to add the python binaries to the PATH variable and run python on another drive without any problem, but I was wondering some things :
I know you can install Python on another drive than your C: drive, but not sure if the same is possible with a network drive.
Can this support concurrent users? Like two people running python scripts at the same time.
Would users with no write privileges still be able to install python modules? I want only users with write access to the drive to be able to do this.
Would this pose any problems with some modules?
Thanks.
I'm a Linux user so can't test, but this seems like a common question and google finds lots of similar questions with answers
to answer your questions to be best of my ability:
pip install --user requests