首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

pyenv-win-master

后端 3.43MB 4 需要积分: 1
立即下载

资源介绍:

pyenv-win-master
# pyenv for Windows [pyenv][1] is an amazing tool used to manage multiple versions of python in your machine. We have ported it to Windows. We need your thoughts to improve this library and your feedback helps to grow the project. For existing python users, we support [installation via pip](#installation). Contributors and Interested people can join us on @[Slack](https://join.slack.com/t/pyenv/shared_invite/zt-f9ydwgyt-Fp8tehxqeCQi5mi77RxpGw). Your help keeps us motivated! [![pytest](https://github.com/pyenv-win/pyenv-win/actions/workflows/pytest.yml/badge.svg)](https://github.com/pyenv-win/pyenv-win/actions/workflows/pytest.yml) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![GitHub issues open](https://img.shields.io/github/issues/pyenv-win/pyenv-win.svg?)](https://github.com/pyenv-win/pyenv-win/issues) [![Downloads](https://pepy.tech/badge/pyenv-win)](https://pepy.tech/project/pyenv-win) [![Rate this package](https://badges.openbase.com/python/rating/pyenv-win.svg?token=hjylt9qszl1DzDMCXNqMQZ6ijtlNCYzG3dKZNF+hgk4=)](https://openbase.com/python/pyenv-win?utm_source=embedded&utm_medium=badge&utm_campaign=rate-badge) - [Introduction](#introduction) - [pyenv](#pyenv) - [pyenv-win commands](#pyenv-win-commands) - [Installation](#installation) - [Validate installation](#validate-installation) - [Usage](#usage) - [How to update pyenv](#how-to-update-pyenv) - [Announcements](#announcements) - [FAQ](#faq) - [Changelog](#changelog) - [How to contribute](#how-to-contribute) - [Bug Tracker and Support](#bug-tracker-and-support) - [License and Copyright](#license-and-copyright) - [Author and Thanks](#author-and-thanks) ## Introduction [pyenv][1] for python is a great tool but, like [rbenv][2] for ruby developers, it doesn't directly support Windows. After a bit of research and feedback from python developers, I discovered they wanted a similar feature for Windows systems. This project was forked from [rbenv-win][3] and modified for [pyenv][1]. It is now fairly mature, thanks to help from many different contributors. ## pyenv [pyenv][1] 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. ## Quick start 1. Install pyenv-win in PowerShell. ```pwsh Invoke-WebRequest -UseBasicParsing -Uri "https://raw.githubusercontent.com/pyenv-win/pyenv-win/master/pyenv-win/install-pyenv-win.ps1" -OutFile "./install-pyenv-win.ps1"; &"./install-pyenv-win.ps1" ``` 2. Reopen PowerShell 3. Run `pyenv --version` to check if the installation was successful. 4. Run `pyenv install -l` to check a list of Python versions supported by pyenv-win 5. Run `pyenv install ` to install the supported version 6. Run `pyenv global ` to set a Python version as the global version 7. Check which Python version you are using and its path ```plaintext > pyenv version (set by \path\to\.pyenv\pyenv-win\.python-version) ``` 8. Check that Python is working ```plaintext > python -c "import sys; print(sys.executable)" \path\to\.pyenv\pyenv-win\versions\\python.exe ``` ## pyenv-win commands ```yml commands List all available pyenv commands local Set or show the local application-specific Python version latest Print the latest installed or known version with the given prefix global Set or show the global Python version shell Set or show the shell-specific Python version install Install 1 or more versions of Python uninstall Uninstall 1 or more versions of Python update Update the cached version DB rehash Rehash pyenv shims (run this after switching Python versions) vname Show the current Python version version Show the current Python version and its origin version-name Show the current Python version versions List all Python versions available to pyenv exec Runs an executable by first preparing PATH so that the selected Python version's `bin' directory is at the front which Display the full path to an executable whence List all Python versions that contain the given executable ``` ## Installation Currently we support following ways, choose any of your comfort: - [PowerShell](docs/installation.md#powershell) - easiest way - [Git Commands](docs/installation.md#git-commands) - default way + adding manual settings - [Pyenv-win zip](docs/installation.md#pyenv-win-zip) - manual installation - [Python pip](docs/installation.md#python-pip) - for existing users - [Chocolatey](docs/installation.md#chocolatey) - [How to use 32-train](docs/installation.md#how-to-use-32-train) - [check announcements](#announcements) Please see the [Installation](./docs/installation.md) page for more details. ## Validate installation 1. Reopen the command prompt and run `pyenv --version` 2. Now type `pyenv` to view it's usage If you are getting "**command not found**" error, check the below note and [manually check the settings](#manually-check-the-settings) For Visual Studio Code or another IDE with a built in terminal, restart it and check again *** ### Manually check the settings Ensure all environment variables are properly set with high priority via the GUI: ```plaintext This PC → Properties → Advanced system settings → Advanced → Environment Variables... → PATH ``` **NOTE:** If you are running Windows 10 1905 or newer, you might need to disable the built-in Python launcher via Start > "Manage App Execution Aliases" and turning off the "App Installer" aliases for Python ## Usage - To view a list of python versions supported by pyenv windows: `pyenv install -l` - To filter the list: `pyenv install -l | findstr 3.8` - To install a python version: `pyenv install 3.5.2` - _Note: An install wizard may pop up for some non-silent installs. You'll need to click through the wizard during installation. There's no need to change any options in it. or you can use -q for quiet installation_ - You can also install multiple versions in one command too: `pyenv install 2.4.3 3.6.8` - To set a python version as the global version: `pyenv global 3.5.2` - This is the version of python that will be used by default if a local version (see below) isn't set. - _Note: The version must first be installed._ - To set a python version as the local version: `pyenv local 3.5.2`. - The version given will be used whenever `python` is called from within this folder. This is different than a virtual env, which needs to be explicitly activated. - _Note: The version must first be installed._ - After (un)installing any libraries using pip or modifying the files in a version's folder, you must run `pyenv rehash` to update pyenv with new shims for the python and libraries' executables. - _Note: This must be run outside of the `.pyenv` folder._ - To uninstall a python version: `pyenv uninstall 3.5.2` - To view which python you are using and its path: `pyenv version` - To view all the python versions installed on this system: `pyenv versions` - Update the list of discoverable Python versions using: `pyenv update` command for pyenv-win `2.64.x` and `2.32.x` versions ## How to update pyenv - If installed via pip - Add your pyenv-win installation path to `easy_install.pth` file located in site-packages. This should make pip recognise pyenv-win as installed. - Get updates via pip `pip install --upgrade pyenv-win` - If installed via Git - Go to `%USERPROFILE%\.pyenv\pyenv-win` (which is your installed path) and run `git pull` - If installed via zip - Download the latest zip and extract it - Go to `%USERPROFILE%\.pyenv\pyenv-win` and replace the folders `libexec` and `bin` with the new ones you just downloaded - If installed via the insta

资源文件列表:

pyenv-win-master.zip 大约有109个文件
  1. pyenv-win-master/
  2. pyenv-win-master/.coveralls.yml 17B
  3. pyenv-win-master/.github/
  4. pyenv-win-master/.github/CODEOWNERS 198B
  5. pyenv-win-master/.github/ISSUE_TEMPLATE/
  6. pyenv-win-master/.github/ISSUE_TEMPLATE/bug_report.md 690B
  7. pyenv-win-master/.github/ISSUE_TEMPLATE/custom.md 126B
  8. pyenv-win-master/.github/ISSUE_TEMPLATE/feature_request.md 603B
  9. pyenv-win-master/.github/scripts/
  10. pyenv-win-master/.github/scripts/build.sh 455B
  11. pyenv-win-master/.github/scripts/ps1.sh 459B
  12. pyenv-win-master/.github/workflows/
  13. pyenv-win-master/.github/workflows/codeql-analysis.yml 2.68KB
  14. pyenv-win-master/.github/workflows/jekyll-gh-pages.yml 1.17KB
  15. pyenv-win-master/.github/workflows/publish.yml 688B
  16. pyenv-win-master/.github/workflows/pytest.yml 476B
  17. pyenv-win-master/.github/workflows/pytest_ps1.yml 830B
  18. pyenv-win-master/.github/workflows/sphinx-gh-pages.yml 1.17KB
  19. pyenv-win-master/.github/workflows/update_cache.yml 1.39KB
  20. pyenv-win-master/.gitignore 1.27KB
  21. pyenv-win-master/.python-version 6B
  22. pyenv-win-master/.version 6B
  23. pyenv-win-master/LICENSE 1.05KB
  24. pyenv-win-master/README.md 10.19KB
  25. pyenv-win-master/_config.yml 29B
  26. pyenv-win-master/docs/
  27. pyenv-win-master/docs/changelog.md 7.78KB
  28. pyenv-win-master/docs/faq.md 2.04KB
  29. pyenv-win-master/docs/installation.md 6.27KB
  30. pyenv-win-master/mirrors.txt 130B
  31. pyenv-win-master/pyenv-win/
  32. pyenv-win-master/pyenv-win/.versions_cache.xml 136.61KB
  33. pyenv-win-master/pyenv-win/__init__.py
  34. pyenv-win-master/pyenv-win/bin/
  35. pyenv-win-master/pyenv-win/bin/WiX/
  36. pyenv-win-master/pyenv-win/bin/WiX/LICENSE.TXT 3.26KB
  37. pyenv-win-master/pyenv-win/bin/WiX/WixDependencyExtension.dll 124KB
  38. pyenv-win-master/pyenv-win/bin/WiX/WixDifxAppExtension.dll 28KB
  39. pyenv-win-master/pyenv-win/bin/WiX/WixDirectXExtension.dll 88KB
  40. pyenv-win-master/pyenv-win/bin/WiX/WixFirewallExtension.dll 124KB
  41. pyenv-win-master/pyenv-win/bin/WiX/WixGamingExtension.dll 112KB
  42. pyenv-win-master/pyenv-win/bin/WiX/WixHttpExtension.dll 112KB
  43. pyenv-win-master/pyenv-win/bin/WiX/WixIIsExtension.dll 448KB
  44. pyenv-win-master/pyenv-win/bin/WiX/WixNetFxExtension.dll 360KB
  45. pyenv-win-master/pyenv-win/bin/WiX/WixSqlExtension.dll 320KB
  46. pyenv-win-master/pyenv-win/bin/WiX/WixUIExtension.dll 3.57MB
  47. pyenv-win-master/pyenv-win/bin/WiX/WixUtilExtension.dll 844KB
  48. pyenv-win-master/pyenv-win/bin/WiX/WixVSExtension.dll 1.03MB
  49. pyenv-win-master/pyenv-win/bin/WiX/dark.exe 28KB
  50. pyenv-win-master/pyenv-win/bin/WiX/dark.exe.config 810B
  51. pyenv-win-master/pyenv-win/bin/WiX/winterop.dll 115KB
  52. pyenv-win-master/pyenv-win/bin/WiX/wix.dll 1.67MB
  53. pyenv-win-master/pyenv-win/bin/pyenv 151B
  54. pyenv-win-master/pyenv-win/bin/pyenv.bat 6.78KB
  55. pyenv-win-master/pyenv-win/bin/pyenv.ps1 721B
  56. pyenv-win-master/pyenv-win/install-pyenv-win.ps1 5KB
  57. pyenv-win-master/pyenv-win/libexec/
  58. pyenv-win-master/pyenv-win/libexec/libs/
  59. pyenv-win-master/pyenv-win/libexec/libs/pyenv-install-lib.vbs 16.35KB
  60. pyenv-win-master/pyenv-win/libexec/libs/pyenv-lib.vbs 14.34KB
  61. pyenv-win-master/pyenv-win/libexec/pyenv---version.bat 1009B
  62. pyenv-win-master/pyenv-win/libexec/pyenv-commands.bat 190B
  63. pyenv-win-master/pyenv-win/libexec/pyenv-duplicate.bat 1.05KB
  64. pyenv-win-master/pyenv-win/libexec/pyenv-exec.bat 536B
  65. pyenv-win-master/pyenv-win/libexec/pyenv-export.bat 803B
  66. pyenv-win-master/pyenv-win/libexec/pyenv-global.bat 403B
  67. pyenv-win-master/pyenv-win/libexec/pyenv-help.bat 1.14KB
  68. pyenv-win-master/pyenv-win/libexec/pyenv-install.vbs 20.04KB
  69. pyenv-win-master/pyenv-win/libexec/pyenv-latest.vbs 2.29KB
  70. pyenv-win-master/pyenv-win/libexec/pyenv-local.bat 1.13KB
  71. pyenv-win-master/pyenv-win/libexec/pyenv-migrate.bat 677B
  72. pyenv-win-master/pyenv-win/libexec/pyenv-rehash.bat 214B
  73. pyenv-win-master/pyenv-win/libexec/pyenv-shell.bat 1.03KB
  74. pyenv-win-master/pyenv-win/libexec/pyenv-shims.bat 215B
  75. pyenv-win-master/pyenv-win/libexec/pyenv-uninstall.vbs 4.45KB
  76. pyenv-win-master/pyenv-win/libexec/pyenv-update.vbs 6.9KB
  77. pyenv-win-master/pyenv-win/libexec/pyenv-version-name.bat 198B
  78. pyenv-win-master/pyenv-win/libexec/pyenv-version.bat 300B
  79. pyenv-win-master/pyenv-win/libexec/pyenv-versions.bat 236B
  80. pyenv-win-master/pyenv-win/libexec/pyenv-vname.bat 191B
  81. pyenv-win-master/pyenv-win/libexec/pyenv-whence.bat 298B
  82. pyenv-win-master/pyenv-win/libexec/pyenv-which.bat 259B
  83. pyenv-win-master/pyenv-win/libexec/pyenv.vbs 16.64KB
  84. pyenv-win-master/requirements.txt
  85. pyenv-win-master/requirements_dev.txt 93B
  86. pyenv-win-master/setup.py 2.04KB
  87. pyenv-win-master/tests/
  88. pyenv-win-master/tests/bat_files/
  89. pyenv-win-master/tests/bat_files/test_install.bat 1.27KB
  90. pyenv-win-master/tests/bat_files/test_uninstall.bat 249B
  91. pyenv-win-master/tests/conftest.py 3.79KB
  92. pyenv-win-master/tests/test_pyenv.py 927B
  93. pyenv-win-master/tests/test_pyenv_feature_commands.py 207B
  94. pyenv-win-master/tests/test_pyenv_feature_duplicate.py 203B
  95. pyenv-win-master/tests/test_pyenv_feature_exec.py 4.23KB
  96. pyenv-win-master/tests/test_pyenv_feature_global.py 2.89KB
  97. pyenv-win-master/tests/test_pyenv_feature_help.py 187B
  98. pyenv-win-master/tests/test_pyenv_feature_install.py 1.61KB
  99. pyenv-win-master/tests/test_pyenv_feature_latest.py 1.81KB
  100. pyenv-win-master/tests/test_pyenv_feature_local.py 2.08KB
  101. pyenv-win-master/tests/test_pyenv_feature_rehash.py 1.72KB
  102. pyenv-win-master/tests/test_pyenv_feature_shell.py 3.95KB
  103. pyenv-win-master/tests/test_pyenv_feature_uninstall.py
  104. pyenv-win-master/tests/test_pyenv_feature_version.py 2.87KB
  105. pyenv-win-master/tests/test_pyenv_feature_version_name.py 2.32KB
  106. pyenv-win-master/tests/test_pyenv_feature_versions.py 3.64KB
  107. pyenv-win-master/tests/test_pyenv_feature_whence.py 1.61KB
  108. pyenv-win-master/tests/test_pyenv_feature_which.py 6.39KB
  109. pyenv-win-master/tests/test_pyenv_helpers.py 5.24KB
0评论
提交 加载更多评论
其他资源 systemd-resolved-219-78.el7.i686.rpm.zip
文件放服务器下载,请务必到电脑端资源预览或者资源详情查看然后下载
systemd-resolved-219-78.el7.x86_64.rpm.zip
文件放服务器下载,请务必到电脑端资源预览或者资源详情查看然后下载
systemd-sysv-219-78.el7.x86_64.rpm.zip
文件放服务器下载,请务必到电脑端资源预览或者资源详情查看然后下载
system-switch-java-1.1.7.1-0.el7.noarch.rpm.zip
文件放服务器下载,请务必到电脑端资源预览或者资源详情查看然后下载
车辆控制工具,-zhenhua
车辆控制工具,-zhenhua
JMeter插件管理器plugins-manager;agent监控
JMeter插件管理器plugins-manager;agent监控
恋爱话术库API(手搓数据库).zip
恋爱话术库API,手搓数据库,还可以自己添加,助力情感升温。一键查询,即可获取贴心话术,让您的恋爱之旅更加甜蜜顺畅。简洁易用,效果显著,是恋爱中不可或缺的助手。 在数据文件中自己添加的格式为json,一行一个关键词的回复,格式:{"msg":"","txt1":"","txt2":"","txt3":"","txt4":"","txt5":"","txt6":"","txt7":"","txt8":"","txt9":"","txt10":""},msg是关键词,txt1-10是回复话术
tbb-4.1-9.20130314.el7.i686.rpm.zip
文件放服务器下载,请务必到电脑端资源预览或者资源详情查看然后下载