Closed keiv-fly closed 3 years ago
After creating a new conda environment on Windows 10 with:
conda create -n py39 python=3.9 anaconda
The pip did not work from git:
pip install git+https://github.com/libtcod/python-tcod.git#egg=tcod
The following error occured:
No module named 'setuptools.build-meta'
The problem was solved by a workaround: Copying manually with
git clone https://github.com/libtcod/python-tcod.git git submodule update --init
Then deleting the pyproject.toml file and then running the following command in the python-tcod folder:
pyproject.toml
python-tcod
pip install .
I was able to reproduce and fix the issues on Windows. It should now install correctly as long as pip is up to date.
After creating a new conda environment on Windows 10 with:
The pip did not work from git:
The following error occured:
The problem was solved by a workaround: Copying manually with
Then deleting the
pyproject.toml
file and then running the following command in thepython-tcod
folder: