pyenv-installer VS pyright

Compare pyenv-installer vs pyright and see what are their differences.

pyenv-installer

This tool is used to install `pyenv` and friends. (by pyenv)

pyright

Static Type Checker for Python (by microsoft)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
pyenv-installer pyright
17 135
3,854 12,006
0.8% 2.2%
3.7 9.8
11 months ago 6 days ago
Shell Python
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

pyenv-installer

Posts with mentions or reviews of pyenv-installer. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-08.
  • pyenv - manage python versions
    2 projects | dev.to | 8 Jul 2023
    To install it make sure that all prerequisites are met. Then use the pyenv-installer project like this to get the tool installed:
  • After deleting Pyenv, I get the top error when I open terminal and when I use the commands to remove it, I get those errors. How do I fix?
    1 project | /r/pop_os | 25 Mar 2023
    I tried the uninstaller from https://github.com/pyenv/pyenv-installer and I'm getting this.
  • Simple Python Version Management: pyenv
    1 project | dev.to | 1 Feb 2023
    After you’ve installed the build dependencies, you’re ready to install pyenv itself. I recommend using the pyenv-installer project:
  • Your own Stable Diffusion endpoint with AWS SageMaker
    7 projects | dev.to | 13 Oct 2022
    For python, it's recommended to use pyenv, which allows you to install several versions of python at the same time with simple commands like this: pyenv install 3.9.13
  • Zellij: A terminal workspace with batteries included
    9 projects | news.ycombinator.com | 12 Aug 2022
    Please don't contribute worthless and irrelevant comments like this. As you doubtless well know, piping from curl into bash is something that a large subset of respected programmers think is reasonable, and another rather tedious subset do not. For example, the entire Rust community clearly has a consensus that it's reasonable: https://rustup.rs/ As does homebrew https://brew.sh/ and pyenv https://github.com/pyenv/pyenv-installer#install to name whatever came to my mind in 30s thought.

    Since the debate has such large numbers on both sides, your individual opinion on it is neither interesting nor germane.

  • Cómo instalar y crear un entorno virtual con pyenv en ubuntu 22.04 LTS
    2 projects | dev.to | 8 Jul 2022
  • Pytest is failing on GitHub Actions but succeeds locally
    3 projects | /r/learnprogramming | 8 May 2022
    name: Test, build and release # whenever a branch or commit is pushed on: [push] jobs: # use pytest test: # used to ensure testing is done right env: DEVELOPMENT: '1' runs-on: ubuntu-latest # to avoid using old sqlite version container: image: debian:latest options: --user root steps: # check out repo - uses: actions/checkout@v2 # prevent from asking user for input - run: export DEBIAN_FRONTEND=noninteractive # install recommended tools for building Python - run: apt -q update - run: apt -q install make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev git sqlite3 -y - run: apt -q upgrade -y # install pyenv - run: curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash - run: exec $SHELL - run: ~/.pyenv/bin/pyenv update # install and set up required Python - run: ~/.pyenv/bin/pyenv install 3.10.2 - run: ~/.pyenv/bin/pyenv virtualenv 3.10.2 npbc - run: ~/.pyenv/bin/pyenv local 3.10.2/envs/npbc # print version info (debugging) - run: ~/.pyenv/shims/python -V - run: ~/.pyenv/shims/python -c "import sqlite3; print(sqlite3.version)" # install pip packages - run: ~/.pyenv/shims/pip install -r requirements.txt pytest # run test - run: ~/.pyenv/shims/pytest -vv
  • Managing multiple versions of Python using pyenv and virtualenvwrapper
    2 projects | dev.to | 5 Nov 2021
    curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
  • [Tutorial] Instalando o Python com o Pyenv
    1 project | dev.to | 29 Oct 2021
  • Real World Python 🐍: Environment Setup - pyenv
    1 project | dev.to | 29 Aug 2021
    This uses the pyenv-installer project to install pyenv on your system.

pyright

Posts with mentions or reviews of pyright. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-18.
  • Enhance Your Project Quality with These Top Python Libraries
    16 projects | dev.to | 18 Mar 2024
    Pyright is a fast type checker meant for large Python source bases. It can run in a “watch” mode and performs fast incremental updates when files are modified.
  • How to speed up Pyright + eglot.
    1 project | /r/emacs | 11 Nov 2023
    However, I made it faster for my use-case by changing some settings. Neovim allows to have these settings in the setup function for LSP. I was trying to figure out how do I change these settings with doom emacs. Pyright docs suggest to have these settings in pyrightconfig.json.
  • Mypy 1.6 Released
    5 projects | news.ycombinator.com | 17 Oct 2023
    Not exactly what you are looking for but maybe useful to others.

    https://github.com/microsoft/pyright/blob/main/docs/mypy-com...

  • VSCodium – Libre Open Source Software Binaries of VS Code
    10 projects | news.ycombinator.com | 4 Sep 2023
    You can use pyright instead[0]. It is the FOSS version of pyright, but having some features missing.

    [0]: https://github.com/microsoft/pyright

  • How do you enable semantic highlighting for Python?
    4 projects | /r/neovim | 7 Jul 2023
    Unfortunately, pyright explicitly stated that they are not interested in inlay hints or other language server features, that those will only be added to pylance. That's why I added it myself instead of submitting a pull request to pyright. See https://github.com/microsoft/pyright/issues/4325
  • How do I enable an LSP for json files?
    2 projects | /r/neovim | 7 Jul 2023
    return { -- add pyright to lspconfig { "neovim/nvim-lspconfig", ---@class PluginLspOpts opts = { ---@type lspconfig.options servers = { -- Listed servers will be automatically loaded to buffers jsonls = { settings = { json = { format = { enable = true, }, }, validate = { enable = true }, }, }, pyright = { settings = { python = { analysis = { -- https://github.com/microsoft/pyright/blob/main/docs/settings.md autoSearchPaths = false, useLibraryCodeForTypes = true, diagnosticMode = "openFilesOnly", }, }, }, }, }, -- Add folding capability to use LSP for ufo plugin capabilities = { textDocument = { foldingRange = { dynamicRegistration = false, lineFoldingOnly = true, }, }, }, }, }, }
  • VSCode isn't Recognizing installed Python Modules?
    1 project | /r/learnprogramming | 4 Jul 2023
    [{ "resource": "/Documents/Coding/VSCode/Projects/Photoeditor/PhotoEditor.py", "owner": "_generated_diagnostic_collection_name_#0", "code": { "value": "reportMissingModuleSource", "target": { "$mid": 1, "external": "https://github.com/microsoft/pyright/blob/main/docs/configuration.md#reportMissingModuleSource", "path": "/microsoft/pyright/blob/main/docs/configuration.md", "scheme": "https", "authority": "github.com", "fragment": "reportMissingModuleSource" } }, "severity": 4, "message": "Import \"requests\" could not be resolved from source", "source": "Pylance", "startLineNumber": 2, "startColumn": 8, "endLineNumber": 2, "endColumn": 16 }]
  • Pyright does not respect virtualenv (astronvim)
    3 projects | /r/neovim | 24 Jun 2023
    I don't use astro, but you can configure pyright by using a pyrightconfig.json or directly in the LSP configuration.
  • Eglot + pyright can not get completion on django.db.models
    6 projects | /r/emacs | 16 Jun 2023
  • Remote Development, Python IDE.
    1 project | /r/emacs | 17 May 2023
    I prefer jedi over pyright as pyright has crippled documentation support outside of VSCode. I also found jedi is make correct suggestions based on inferred type in some situations where pyright would need type annotation to provide completions, pyright is significantly faster though. Jedi with mypy and flake8 is comparable to pyright I think, but unfortunately mypy wasn't working over tramp. Also isort wasn't working over tramp, but jedi, black, importmagic and flake8 all worked.

What are some alternatives?

When comparing pyenv-installer and pyright you can also consider the following projects:

pyenv - Simple Python version management

jedi-language-server - A Python language server exclusively for Jedi. If Jedi supports it well, this language server should too.

yolov4-deepsort - Object tracking implemented with YOLOv4, DeepSort, and TensorFlow.

mypy - Optional static typing for Python

remote - Moved to https://github.com/labmlai/labml/tree/master/remote

python-lsp-server - Fork of the python-language-server project, maintained by the Spyder IDE team and the community

dotfiles-original - POSIX configuration files designed to be cross-platform between macOS and GNU/Linux.

python-language-server - Microsoft Language Server for Python

Poetry - Python packaging and dependency management made easy

coc-jedi - coc.nvim wrapper for https://github.com/pappasam/jedi-language-server

pylance-release - Documentation and issues for Pylance