Aug-23-2020, 08:09 PM
Hi all
I was hoping for some advice.
My company has python version 3.5 IDLE.
My company is NOT a software company, i have started using it to automate some of my tasks.
The issue is that modules such as pandas or numpy is not installed and these modules will never be installed (no specific reason was given).
However i have discovered that .py files that are not installed or party of the standard library can be included using the following code:-
Test is a folder that contains various .py files.
I have pandas installed on my personal computer so I wanted to copy the pandas.py file from my personal computer into my work computer and put it in the Test folder shown above but i cannot seem to find pandas.py or numpy.py
My work computer is heavily restricted, i cannot access the c drive hence why i am trying to find an alternative method.
Any ideas?
Thank you.
I saw youtube video https://www.youtube.com/watch?v=CqvZ3vGoGs0&t=638s
I was hoping for some advice.
My company has python version 3.5 IDLE.
My company is NOT a software company, i have started using it to automate some of my tasks.
The issue is that modules such as pandas or numpy is not installed and these modules will never be installed (no specific reason was given).
However i have discovered that .py files that are not installed or party of the standard library can be included using the following code:-
1 2 |
import sys sys.path.append( "C:\Users\Joe\Test" ) |
I have pandas installed on my personal computer so I wanted to copy the pandas.py file from my personal computer into my work computer and put it in the Test folder shown above but i cannot seem to find pandas.py or numpy.py
My work computer is heavily restricted, i cannot access the c drive hence why i am trying to find an alternative method.
Any ideas?
Thank you.
I saw youtube video https://www.youtube.com/watch?v=CqvZ3vGoGs0&t=638s