-
For some secure reason, I need to deploy Haystack completely offline. I want to download all possible packages and move them to the offline PC. If someone had a expereice. Please give me a hint. Here is what I have done.
Can I just install hayStack offline? I saw farm-haystack on PyPi but I needed to downgrade the transformers and tokenizer to some version.(pip will rasie the package dependency error.) With great respect for everyone. Thanks for your suggestion in advance.:) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Good news. I have just successfully deployed the Haystack to an offline windows10 PC.
I will open a new discussion or write a post if anyone need a more detailed instruction. But now I have to have a sweet dream. I have to say: with great respect to Haystack! |
Beta Was this translation helpful? Give feedback.
Good news. I have just successfully deployed the Haystack to an offline windows10 PC.
my_env
. Activate the new environment use commandconda activate my_env
.pip install farm-haystack -f https://download.pytorch.org/whl/torch_stable.html
(note it will support GPU compute if you have a GPU)conda pack -n my_env
my_env.tar.gz
to the offline PC.my_env.tar.gz
toanaconda/envs/my_env
(You can use command line or do it manually.)cd
to them…