Closed wooter closed 3 months ago
I had the same issue and I'm not a dev so I inputted it in Claude and it gave me an awesome way to solve it:
Get in the correct directory
Activate the virtual environment
Install 'prompt_toolkit' and update the 'requirements.txt' file:
pip install prompt_toolkit
pip freeze > requirements.txt
Make sure all required packages are installed:
pip install -r requirements.txt
Instead of modifying the .env file, let's create a small shell script to help you start the project easily. Create a new file named start_claude.sh
:
echo '#!/bin/bash
source claude_env/bin/activate
python main.py' > start_claude.sh
Make the script executable:
chmod +x start_claude.sh
Now, whenever you want to use Clade Engineer just navigate to the project directory and use: ./start_claude.sh
It's working well for me and I also don't have to activate and deactivate the virtual environment again and again :)
Yeah forgot to add it in the requirements should be fixed now
With the current version I got this error:
This was fixed by
pip install -U jupyter_console
Maybe it needs to be included in requirements.txt?