All Questions
34 questions
0
votes
0
answers
25
views
M Chip Mac and pipenv with python 3.6
I have a project that requires Python 3.6 and uses pipenv, I have recently got a new machine and having a lot of difficulty getting pipenv to work.
From what I see python 3.6 is no longer supported by ...
1
vote
0
answers
144
views
pipenv only recognizing first source in pipfile
Edit: following this post, using pipenv==2022.1.8 did work, looking into why, may have to do with https://github.com/pypa/pipenv/issues/5021
I am currently running python 3.10.12, with pipenv, version ...
0
votes
0
answers
156
views
Executing commands incorrectly in Jenkins pipeline shell script
I set pyenv to an enabled state. And if there is no python version corresponding to the pipfile through pipenv, I tried to install the corresponding python version automatically through pyenv.
[...
0
votes
0
answers
78
views
What is the reliable way to select current directory's python with pyenv + pipenv or pip
I have two problems:
pipenv ignores pyenv settings;
my pip shortcuts are ignoring pyenv settings too:
iuri@tartaruga:~$ pyenv version
3.9.16 (set by /home/iuri/.pyenv/version)
iuri@tartaruga:~$ pyenv ...
1
vote
2
answers
2k
views
pipenv is not able to pickup the python versions from pyenv(pyenv-win)?
I tried using pyenv(pyenv-win) with pipenv in python.
i installed some of the versions of python using pyenv
but when am trying to create a virtual environment using the one of the versions which i ...
2
votes
0
answers
208
views
Is it possible to create a virtualenv without a distribution based Python package installed?
On a blank system (e.g. a bare Debian/Alpine/etc. container) with pyenv installed and a Pipfile/pyproject.toml/.. containing a required version of Python I'd like to create a virtualenv, which is no ...
2
votes
2
answers
5k
views
Issues with pipenv install on M1 Mac for python dependencies
I'm trying to set up a local repository that was originally created on intel-based macs. The repository uses pyenv and pipenv to manage python dependencies. Whenever I try to run pipenv install, I get ...
4
votes
1
answer
1k
views
pipenv: how to activate virtual environment by specifying name or path?
pipenv has a design centered around projects having their own venvs. What if I have a generic venv that I want to use for scripting or to be shared with other projects and therefore I would like it to ...
2
votes
1
answer
2k
views
How schedule crontab job when using pyenv and pipenv
I'm on Ubuntu 20.04, and I am having issues setting up the crontab correctly using pyenv + pipenv together. Simply adding pipenv run python script.py to the cronjob does not work; I think it may be ...
1
vote
2
answers
3k
views
Why can't Pipenv find the correct version of python for my venv?
I need a little assistance with an issue I'm having with one of my venvs.
TLDR
With a fresh virtual environment created with pipenv, running pipenv run python --version returns the following message, ...
0
votes
0
answers
237
views
Configuring Jupyterlab environment
I am following a tutorial on creating a basic webscraper utilising jupyterlab, I have been instructed to perform the following to setup my jupyterlab environment but cannot figure out this basic step ...
2
votes
1
answer
7k
views
pipenv fails to create virtual environment with pyenv python 3.8.0
I am trying to create a virtual environment with python 3.8.0. I'm currently using Ubuntu 20.04. Which has python 3.8.5 installed. So I have installed pyenv and installed python 3.8.0 as well.
Problem:...
4
votes
1
answer
4k
views
Pipenv not recognizing shims for PyEnv python installation
I'm attempting to use pipenv and pyenv to create a virtual environment using python 3.9.0 for a project, but am not able to get pipenv to recognize the version of python 3.9.0 installed by pyenv. ...
1
vote
2
answers
3k
views
How to create a Python virtual environment independent of OS and Python version
I am trying to create a virtual environment to run a script which requires Python 3.6. I started off with Pipenv but I am unable to create the same environment on other platforms via the Pipfile.lock ...
10
votes
3
answers
8k
views
Why is Pipenv not picking up my Pyenv versions?
My system Python version is 3.8.5, however I use pyenv to manage an additional version, 3.6.0, to mirror the server version my project is deployed to. I previously used virtualenv + virtualenvwrapper ...