Double-click start_server.bat
conda activate DailyEssay
python api_server.pyRun the test suite:
conda activate DailyEssay
python test_environment.pyExpected output: [SUCCESS] All tests passed!
Once the server is running:
- API: http://localhost:5000/api/papers
- Frontend: http://localhost:5000
- Conda Environment: DailyEssay
- Python Path: D:\Miniconda3\envs\DailyEssay\python.exe
- Required Packages:
- pymupdf 1.27.2.2
- flask 3.1.3
- flask-cors 6.0.2
- requests 2.32.5
- beautifulsoup4 4.14.3
Solution: You're in the wrong environment. Run:
conda activate DailyEssaySolution: Install dependencies:
conda activate DailyEssay
pip install -r requirements.txtSolution: Run the test suite to diagnose:
conda activate DailyEssay
python test_environment.pySee ENVIRONMENT_SETUP.md for detailed setup instructions and troubleshooting.