-
Notifications
You must be signed in to change notification settings - Fork 8
Windows and Linux Script Installers #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 7 commits
70cbb3c
76cee77
c67f713
4019454
31c4f74
a70ae9b
25f4d02
d8e9898
afbf251
db75ed8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
|
|
||
|
|
||
| pipenv install | ||
| pipenv run python -m spacy download en_core_web_sm | ||
| pipenv run python -m spacy download en_core_web_md | ||
|
Comment on lines
+1
to
+5
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Any status update on the windows script?
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We are currently working on a version that executes the correct commands with the correct versions, yet we are having some issues where there are some dependencies that error out before installing. |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| #!/bin/bash | ||
| if [ -f "$(eval 'which pip')" ] | ||
| then | ||
| pip_version="pip" | ||
| elif [ -f "$(eval 'which pip3')" ] | ||
| then | ||
| pip_version="pip3" | ||
| else | ||
| $(eval "python3 -m pip install --upgrade pip") | ||
| pip_version="pip" | ||
| fi | ||
|
|
||
| echo $(eval "$pip_version install pipenv -U") | ||
| echo $(eval "cd ..") | ||
| echo $(eval "pipenv install") | ||
| echo $(eval "pipenv run python -m spacy download en_core_web_sm") | ||
| echo $(eval "pipenv run python -m spacy download en_core_web_md") | ||
|
Comment on lines
+1
to
+17
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This looks great! |
||
Uh oh!
There was an error while loading. Please reload this page.