I have Windows and Ubuntu on my PC.
I usually work with Python on Ubuntu, but sometimes I need to compile my scripts into a Windows.exe file. For this, I need to have the same list of python libraries installed on Windows as on Ubuntu.
I tried to solve this problem with
- pip freeze> requirements.txt
- pip install -r requirements.txt
but the second operation causes errors in many libraries, such as apturl and, of course, unity-area - "Could not find blah blah blah." At the moment, I'm just installing all the necessary libraries manually, but it's boring.
What is the best way to "synchronize" the python library list between Win and Linux?
After some thoughts.
Okay, I have an idea along with this other question - is it possible to ignore all the "Could not be found" errors and move on to the next item in the list?
source
share