✨ Properly implement `pyenv` & `pipenv`
Rikj000 opened this issue · 2 comments
Rikj000 commented
Make mgm-hurry
run under:
pyenv
: Lets you easily switch between multiple versions of Python.pipenv
: The new currently preferred to use package for Python virtual environments for dependency packages and also should be able to work together with Freqtrade's oldervirtualenv
(Older package that does the same forfreqtrade
itself).
The benefit of running everything under pyenv
& pipenv
will be that we eliminate the Python +3.8 dependency.
(Since the virtual environment will use whichever Python version we need, stand-alone from the main Python version used by the OS).
Quite a few Linux distributions are not on Python +3.8 yet, which currently renders them unable to do a source install.
Rikj000 commented
Those who wish to be early, you can already install pyenv
by:
- Installing the needed build environment dependency packages
- Running the
pyenv-installer
- Don't forget to add the needed lines to your shell config (e.g.
~/.bashrc
, thepyenv-installer
will prompt you for this at the end of it's installation)
Rikj000 commented
Added in commits: 1117c45...0b3f520 🎉