Skip to main content

pyenv lets you easily switch between multiple versions of Python. It's simple, unobtrusive, and follows the UNIX tradition of single-purpose tools that do one thing well.

Project description

pyenv for Windows

The pyenv is a great tool. I ported it to Windows. Some commands doesn't implemented, but wouldn't be a problem in basic use.

For existing python users, we are supporting installation via pip follow instructions

License: MIT GitHub issues open Downloads

Introduction

The pyenv for python is a great tool, but it doesn't supports windowns platform directly, which was the same case in rbenv for ruby developers. After a bit of research and feedbacks from python developers, they loves to have such a feature for windows systems.

I got inspired from the pyenv issues for windows support, personally I too use mac and linux with beautiful pyenv, but in some companies they still use windows for there development. This library is to help windows users to manage multiple pythons.

Found a similar system for rbenv-win for ruby developers. This project was forked from rbenv-win and modified for pyenv. Some commands doesn't implemented, but wouldn't be a problem in basic use.

pyenv

pyenv is a simple python version management tool. It lets you easily switch between multiple versions of Python. It's simple, unobtrusive, and follows the UNIX tradition of single-purpose tools that do one thing well.

pyenv-win does

   commands    List all available pyenv commands
   local       Set or show the local application-specific Python version
   global      Set or show the global Python version
   shell       Set or show the shell-specific Python version
   install     Install a Python version using python-build
   uninstall   Uninstall a specific Python version
   rehash      Rehash pyenv shims (run this after installing executables)
   version     Show the current Python version and its origin
   versions    List all Python versions available to pyenv
   exec        Runs an executable by first preparing PATH so that the selected Python

Installation

  • Installing by pip: (To support existing python users)

    1. For command prompt use following command pip install pyenv-win --target %USERPROFILE%/.pyenv (or)
      For git bash or alternative use following command pip install pyenv-win --target $HOME/.pyenv
    2. Add the following paths to your ENVIRONMENT PATH variable for accessing to pyenv command %USERPROFILE%\.pyenv\pyenv-win\bin;%USERPROFILE%\.pyenv\pyenv-win\shims; at the begining
      • ENVIRONMENT PATH :: My Computer -> Propertires -> Advanced system settings -> Advanced -> Environment Variables -> PATH
    3. Open command prompt (new session) and type pyenv --version
    4. You need to see current pyenv version. If you are getting an error go through the steps again still facing the issue open a ticket.
    5. Type pyenv to see list of commands it support. More..

    Installation is done hurray...!

  • Installing by downloading zip file:

    1. Link: pyenv-win

    2. Extract to your %USERPROFILE%/.pyenv/pyenv-win

    3. Add the following paths to your ENVIRONMENT PATH variable for accessing to pyenv command %USERPROFILE%\.pyenv\pyenv-win\bin;%USERPROFILE%\.pyenv\pyenv-win\shims; at the begining

      • ENVIRONMENT PATH :: My Computer -> Propertires -> Advanced system settings -> Advanced -> Environment Variables -> PATH
    4. Open command prompt (new session) and type pyenv --version

    5. You need to see current pyenv version. If you are getting an error go through the steps again still facing the issue open a ticket.

    6. Type pyenv to see list of commands it support. More..

    Installation is done hurray...!

  • Installing by git:

    1. Clone the repository to the user profile
      git clone https://github.com/pyenv-win/pyenv-win.git %USERPROFILE%/.pyenv/pyenv-win

    2. Add the following paths to your ENVIRONMENT PATH variable for accessing to pyenv command %USERPROFILE%\.pyenv\pyenv-win\bin;%USERPROFILE%\.pyenv\pyenv-win\shims; at the begining

      • ENVIRONMENT PATH :: My Computer -> Propertires -> Advanced system settings -> Advanced -> Environment Variables -> PATH
    3. Open command prompt (new session) and type pyenv --version

    4. You need to see current pyenv version. If you are getting an error go through the steps again still facing the issue open a ticket.

    5. Type pyenv to see list of commands it support. More..

    Installation is done hurray...!

How it works

  • To view list of python versions supported by pyenv windows. pyenv install -l
  • To install python version. pyenv install 3.5.2 Note: older version of python is msi file just click on next to install (no need of changing any options it in)
  • To set a python version as global version. pyenv global 3.5.2 Note: version needs to be installed
  • To set a python version as local version. pyenv local 3.5.2 you can give any version which you wanted to use to the project, this will be auto activated by entering to the folder not like other virtual env. to activate.
  • To uninstall any python version. pyenv uninstall 3.5.2
  • To know which python you are using and it's path pyenv version
  • To view all the python versions installed in this system pyenv versions

How to get updates

  • Installed via pip
    • Add pyenv-win installed path to easy_install.pth file which is located in site-package. Now pyenv-win is recognised by pip
    • Get updates via pip pip install --upgrade pyenv-win
  • Installed via git
    • Go to the %USERPROFILE%/.pyenv/pyenv-win (which is your installed path) and type git pull
  • Installed via zip
    • Go to the path %USERPROFILE$/.pyenv/pyenv-win/ replace libexec and bin folder

FAQ

  • Question: Does pyenv for windows support python2?
    Answer: Yes, We are supporting python2 from the version 2.0.1. We are supporting from 2.0.1 until the python.org officially removes.

  • Question: Does pyenv for windows support python3?
    Answer: Yes, we are supporting python3 from the version 3.0. We are supporting from 3.0 until the python.org officially removes.

  • Question: I am getting an issue batch file cannot be found. while installing python, what to do?
    Answer: You can ignore it. It's calling pyenv rehash command before creating the bat file in few devices.

  • Question: System is stuck while uninstalling the python version, what to do?
    Answer: It's based on the system policies in few computers, recommend to uninstall in these computers by going to the path %USERPROFILE%/.pyenv/pyenv-win/install_cache/. I believe you know manual uninstallation. Please remove the site-package and scripts while uninstalling (mandatory). Double check the python version folder doesn't exist in the path %USERPROFILE%/.pyenv/pyenv-win/versions/ if exist please do remove it (mandatory).

  • Question: I installed pyenv-win using pip how to uninstall it?
    Answer: Follow How to get updates in pip link and then pip uninstall pyenv-win

How to contribute

  • Fork the project & clone locally.
  • Create an upstream remote and sync your local copy before you branch.
  • Branch for each separate piece of work. It's a good practise to write test cases.
  • Do the work, write good commit messages, and read the CONTRIBUTING file if there is one.
  • Test the changes by running tests\test_install.bat and tests\test_uninstall.bat
  • Push to your origin repository.
  • Create a new Pull Request in GitHub.

Bug Tracker and Support

  • Please report any suggestions, bug reports, or annoyances with pyenv-win through the Github bug tracker.

License and Copyright

  • pyenv-win is licensed under MIT 2019

    License: MIT

Author and Thanks

pyenv-win was developed by Kiran Kumar Kotari

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyenv-win-1.2.1.tar.gz (19.9 kB view details)

Uploaded Source

Built Distribution

pyenv_win-1.2.1-py3-none-any.whl (22.9 kB view details)

Uploaded Python 3

File details

Details for the file pyenv-win-1.2.1.tar.gz.

File metadata

  • Download URL: pyenv-win-1.2.1.tar.gz
  • Upload date:
  • Size: 19.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.5.6

File hashes

Hashes for pyenv-win-1.2.1.tar.gz
Algorithm Hash digest
SHA256 1e853461f3730619e8295d2e7e7dfc5423b52faf241aba050ec46f5a75f02df2
MD5 79e05db20f9cdf35dc2354112ba8c23c
BLAKE2b-256 6c93e6513825bbdcf0f5883f51b435453fe9392784d9994eaf7ef3e7bfa121a9

See more details on using hashes here.

File details

Details for the file pyenv_win-1.2.1-py3-none-any.whl.

File metadata

  • Download URL: pyenv_win-1.2.1-py3-none-any.whl
  • Upload date:
  • Size: 22.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.5.6

File hashes

Hashes for pyenv_win-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 65010d50ab654d7a3e4f2f90b4c29e159815eab199c19a9c9e997577771e65b7
MD5 05b31fa6f39df33f37e679e8cbcc8f1e
BLAKE2b-256 894c617ec5b06b6f9e1de37c85b5807802eb76a73e6b7fc03b3426cd9793ad8e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page