0

I am using winpython. Now for simple distribution, I want to use winpython zero. Is it possible to install the package from winpython folder to winpython zero folder?

asked Aug 24, 2016 at 5:22
1
  • Or, nobody uses winpython? Commented Aug 24, 2016 at 5:33

2 Answers 2

1

In theory, a possible way would be to:

pip install the_package_i_want --no-index --find-links=d:\toto --trusted-host=None

answered Aug 24, 2016 at 16:42
Sign up to request clarification or add additional context in comments.

Comments

1

One of the simplest ways is just copying the site-package directory in the original winpython to the new one (It is assumed that the versions of two winpythons are the same, saying python 3.5).

If you thinks the above way is silly, then you can use pip instead.

  1. Extract the installed packages from original winpython (pip used below should belong to the original winpython)

    pip freeze --all> python_packages.txt

  2. Install the extracted package list with pip. (pip used below should belong to the new winpython)

    pip install -r python_packages.txt

answered Aug 24, 2016 at 6:25

2 Comments

I don't want to download the package so pip will not help. Thanks for the answer. I have winpython which contains all installed package. Is it possible to extract that package and install it to the another python installtion?
@Scripting.FileSystemObject If you don't consider downloading, you can refer to this answer. I think the 'brute-force copy' is the solution.

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.