Nesvilab/FragPipe

EasyPQP not installed

Closed this issue · 7 comments

I tried installing Fragpipe 20.1 on a server (Win Server 2016 OS) and everyone is fine accept for the EasyPQP. I installed Python v 3.9.13 which is recognized fine, but it gives an error when installing the EasyPQP (see attached).
Screenshot 2024-05-02 at 12 59 43
Thanks,
Yishai

fcyu commented

Hi Yishai,

It seems that the computer didn't have access to pypi.org. Maybe due to some security config?

Best,

Fengchao

fcyu commented

Hi Yishai,

Got it. Could you download the zip file from https://github.com/grosenberger/easypqp/releases/latest, copy the file to your computer, unzip it, go to the folder, and run python setup.py install?

Thanks,

Fengchao

fcyu commented

Ah, yes. It requires some external packages... Then, I am not sure if there is an easy way to do that except for download and install each of them (and their dependencies) one by one.

Best,

Fengchao

I think you can run 'python -m pip wheel easypqp' on the command line to generate "wheel" (.whl) files for easypqp and all the packages it depends on (on the computer with internet). Then you can copy the .whl files to the other computer and run 'python -m pip install [filename].whl' on the easypqp wheel to install them. I think that should work without internet, but haven't ever tried it - you might have to install each wheel individually.

Best,
Dan