MichelleN
MichelleN

Reputation: 11

Installing snakemake without internet

I am working on a station where internet communication is forbidden. Is it possible to install snakemake without conda?

Thanks, Michelle

Upvotes: 1

Views: 156

Answers (1)

Johannes Köster
Johannes Köster

Reputation: 1927

Yes, it can be installed via pip as well. However, that still needs a download. With conda, you should also be able to download the package and all dependencies via anaconda.org, and then copy it over to that machine. But it certainly will require some manual steps. There is also a docker container. This is probably easier, because it is only a single file.

Upvotes: 1

Related Questions