pyenv-installer

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

Pyenv-installer Alternatives

Similar projects and alternatives to pyenv-installer

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better pyenv-installer alternative or higher similarity.

pyenv-installer reviews and mentions

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:
  • 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
  • Trying to install python 3.8.5 on ubuntu 18.04
    4 projects | /r/ansible | 7 Jun 2021
    --- - name: Configure server. hosts: pyenv2 vars: python3_tmpdir: "~/python3" python3_command: python3 python3_bashrc: "{{ ansible_user_dir}}/.bash_profile" python3_local: "{{ ansible_user_dir}}/.local/bin" pre_tasks: - name: update apt become: yes apt: update_cache=yes cache_valid_time=7200 tasks: - name: Install requirements for package install become: yes package: name: - python3-pip - python3-virtualenv - python3-dev - virtualenv state: present - name: Install system packages required for pyenv become: yes package: name: - curl - gcc - git - libbz2-dev - libreadline-dev - libssl-dev - libsqlite3-dev - make - zlib1g-dev state: present - name: Install Python using pyenv environment: PATH: "{{ ansible_env.PATH }}:{{ ansible_user_dir }}/.pyenv/bin" block: - name: Create download directory file: path: "{{ python3_tmpdir }}" state: directory mode: 0700 changed_when: false # tmpdir role removes directory automatically - name: Download pyenv installer get_url: url: https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer dest: "{{ python3_tmpdir }}" changed_when: false # temporary directory is removed when play ends - name: Run pyenv installer command: "bash pyenv-installer" args: chdir: "{{ python3_tmpdir }}" creates: "{{ ansible_user_dir }}/.pyenv" - name: Update login file blockinfile: path: "{{ python3_bashrc }}" create: true block: | export PATH="{{ ansible_user_dir }}/.pyenv/bin:$PATH" eval "$(pyenv init -)" eval "$(pyenv virtualenv-init -)" mode: 0644 - name: Update pyenv command: pyenv update - name: Install Python block: - name: Install Python command: "pyenv install 3.8.5" args: creates: "{{ ansible_user_dir }}/.pyenv/versions/3.8.5" - name: Execute pyenv rehash command: "pyenv rehash" - name: Define python3 command set_fact: # can't rely on changes to $PATH yet python3_command: "{{ ansible_user_dir }}/.pyenv/shims/{{ python3_command }}"
    4 projects | /r/ansible | 7 Jun 2021
    - name: Install requirements for package install become: true package: name: - python3-pip - python3-virtualenv - python3-dev - virtualenv state: present - name: Install system packages required for pyenv become: true package: name: - curl - gcc - git - libbz2-dev - libreadline-dev - libssl-dev - libsqlite3-dev - make - zlib1g-dev state: present - name: Install Python using pyenv environment: PATH: "{{ ansible_env.PATH }}:{{ ansible_user_dir }}/.pyenv/bin" block: - name: Create download directory file: path: "{{ python3_tmpdir }}" state: directory mode: 0600 changed_when: false # tmpdir role removes directory automatically - name: Install pyenv block: - name: Download pyenv installer get_url: url: https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer dest: "{{ python3_tmpdir }}" changed_when: false # temporary directory is removed when play ends - name: Run pyenv installer command: "bash pyenv-installer" args: chdir: "{{ python3_tmpdir }}" creates: "{{ ansible_user_dir }}/.pyenv" - name: Update login file blockinfile: path: "{{ python3_bashrc }}" create: true block: | export PATH="{{ ansible_user_dir }}/.pyenv/bin:$PATH" eval "$(pyenv init -)" eval "$(pyenv virtualenv-init -)" mode: 0644 - name: Update pyenv command: pyenv update - name: Install Python block: - name: Install Python command: "pyenv install 3.8.5" args: creates: "{{ ansible_user_dir }}/.pyenv/versions/3.8.5" - name: Execute pyenv rehash command: "pyenv rehash" - name: Define python3 command set_fact: # can't rely on changes to $PATH yet python3_command: "{{ ansible_user_dir }}/.pyenv/shims/{{ python3_command }}"
  • Upgrade to Python 3.8
    2 projects | /r/openSUSE | 1 May 2021
    Then, well just run the installer script provided by the devs: curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash Note: Always inspect the code of shell scripts before running them
  • Installing tensorflow with gpu makes me want to blow my brains out
    3 projects | /r/tensorflow | 28 Dec 2020
    I personally have been having a lot of fun with pyenv these days which allows you to set a different python version to any given folder auto-magically, just by being in it. Of course from there you're using pip.
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 28 Mar 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more →

Stats

Basic pyenv-installer repo stats
17
3,838
3.7
10 months ago
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com