06-21-2020, 02:07 AM
For my setup, I have this working well:
1. Python 3.8 - default install that comes with Manjaro
2. pip - sudo pacman -Syu python-pip
3. Pandas - installed via sudo pacman -Syu python-pandas
4. Numpy - comes installed with Pandas as requirement
5. Virtualenv - sudo pacman -Syu python-virtualenv
Then I create a virtual environment with flag --system-site-packages so that I have access to pandas and numpy. installed in the global Python installation dir.
Within that virtual env, I pip install jupyter lab and other pypi packages that I need for API calls etc. Works great so far for light, initial data exploration (I haven't taken it further -- large datasets in the 1M records mark)
1. Python 3.8 - default install that comes with Manjaro
2. pip - sudo pacman -Syu python-pip
3. Pandas - installed via sudo pacman -Syu python-pandas
4. Numpy - comes installed with Pandas as requirement
5. Virtualenv - sudo pacman -Syu python-virtualenv
Then I create a virtual environment with flag --system-site-packages so that I have access to pandas and numpy. installed in the global Python installation dir.
Within that virtual env, I pip install jupyter lab and other pypi packages that I need for API calls etc. Works great so far for light, initial data exploration (I haven't taken it further -- large datasets in the 1M records mark)