chatgpt-history-export-to-md
chatgpt-history-export-to-md copied to clipboard
Getting requirements to build wheel ... error
Describe the bug error when installing
Expected behavior
installing the program
Screenshots
File "{MYFILEDIRECTORY}\Local\Programs\Python\Python312\Lib\site-packages\pip_vendor\pyproject_hooks_in_process_in_process.py", line 353, in
OS Windows
Additional context This is my very first time submitting an issue - please let me know if i missed something.
Hi there - you're probably on Python 3.12 (as was I).
Cause
I checked out the versioneer package and it says:
Compatible with: Python 3.7, 3.8, 3.9, 3.10, 3.11 and pypy3 Experimental support for Python 3.12.
If you're running Python 3.12, installing convoviz apparently will throw an error.
Solution
I got it to build with the following steps:
- Selected a supported version of the Python interpreter as IDE interpreter (e.g., version = 3.11)
- Created virtual environment to contain this version and its packages (best practice anyway) in my project directory:
python -m venv YOUR_VIRTUAL_ENV_NAME
source YOUR_VIRTUAL_ENV_NAME/bin/activate
The terminal should display:
(YOUR_VIRTUAL_ENV_NAME) ➜ directory
- Ran
pip install convovizagain
It should then build fine.
Potential fixes
The direct source in this project seems to be the wordcloud package, which uses versioneer.