python - Installing Ghost.py on windows 8 -
for starters, dislike whoever made website builder called "ghost" cause makes topic annoying search.
anyways, trying these instructions , seems i'm good.
step 1) pyqt, have anaconda, there. play safe, start typing (in cmd):
conda update conda conda update anaconda #we're date , ready go...
and finally,
conda install pyqt
it returns saying:
#all requested packages installed. # packages in environment @ c:\users\(my name)\anaconda:
step 2) install flask. (i have pearl well...so needs .exe)
pip.exe install flask
returns:
requirement satisfied (use --upgrade upgrade): flask in c:\users\(my name)\anaconda\lib\site-packages
i guess means it's there?
step 3) install paste
pip.exe install paste
returns: same thing flask
step 4) install ghost.py, tried mentioned instructions, said didn't exist. after digging around, looks using same method, "pip.exe install ghost.py" way go, that, , again, cmd tells me same think flask , paste, same path , everything.
so, copy , paste exact example in instructions first mentioned pycharm, , guess we're gonna @ ebay...well, navigate directory python script in, , when attempt run file says:
traceback (most recent call last): file "ghostpy.py", line 2, in <module> ghost import ghost importerror: no module named ghost
so that's i'm at. missing? go here? side measure, installed pyside using anaconda, installed, , gave me same result above.
thank in advance help! y'all great!
ghost.py considered pre-release pip need use --pre
flag:
pip install pyside pip install ghost.py --pre
Comments
Post a Comment