Closed cstrutton closed 9 years ago
ahh, that still had an old version of flask-xxl in the requirements.txt, ive been refactoring that library, pulling out its dependency on flask-sqlalchemy. so just update your repo,
git pull
then update the dependencys
pip install -r flask_cms/requirements.txt -I
make sure to add the -I
so it ignores the fact that flask-xxl is already installed.
that should fix that error.
Thanks for the quick response. Unfortunately, I am still having problems. I was able to reproduce as follows:
git clone https://github.com/jstacoder/flask-cms.git
...
cd flask-cms
virtualenv venv
. venv/bin/activate
which python
flask-cms/venv/bin/python
python setup.py develop
This gives me a conflict:
error: Installed distribution Markdown 2.5.2 conflicts with requirement Markdown==2.5.1
I fixed that by changing requirements.txt to Markdown==2.5.2
Now I am stuck at:
error: Installed distribution flask-codemirror 0.0.4 conflicts with requirement flask-codemirror==0.0.3
I started an issue at flask-xxl for this one (does flask-xxl require code-mirror?)
Let me know when I can try again. I'm looking forward to seeing this working.
got around codemirror by requiring 0.0.3
now its complaining about Pygments==1.6 (from flask-cms) conflicting with installed version 2.0.1
also had to fix debugbar the same way with flask-cms wanting 0.9.0 and flask-xxl wanting 0.9.2
this gets me through setup.py.
If I find the time and I like the project, I will look at stripping down requirements.txt to the bare minimum and maybe removing a lot of the spcific version (changing == to >= where appropriate).
I built a fresh virtual enviroment (python 2.7) and ran python setup.py in it. Everything seems to install without a hitch. I add local_settings.py. When I run python manage.py db update I get the following error:
Am I missing something?