Closed
Description
I get an error while following the contributing guide on creating a python eviroment using pip.
when I run the command:
python -m pip install -e . --no-build-isolation
I get an error that says:
error: invalid command 'bdist_wheel'
To repreduce this issue:
- Install Arch linux, September release(and upgrade to the latest version)
- Install :
python3-venv
python-pip
- Follow the contributing guide
git clone https://github.com/your-user-name/pandas.git pandas-yourname
cd pandas-yourname
git remote add upstream https://github.com/pandas-dev/pandas.git
python3 -m venv ~/virtualenvs/pandas-dev
. ~/virtualenvs/pandas-dev/bin/activate
python -m pip install -r requirements-dev.txt
python setup.py build_ext --inplace -j 4
python -m pip install -e . --no-build-isolation
on line 8 I get an error.
P.S
This is my second time opening an issue(ever), please let me know if what else I should mention/include/change in order to be more productive.