-
Notifications
You must be signed in to change notification settings - Fork 55
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
Added points in Manual installation #279
base: main
Are you sure you want to change the base?
Conversation
For Windows User:After the postgres is successfully installed on your system, you need to set the environment variable path for it.Simply type environment variable in search and open environment variable settings , there you need to select and open path settings and add a new path which will be path to bin folder of postgres installation in your C://program files. | ||
Once you set the path and save the settings, verify it by opening command prompt and running psql --version command there. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rajxzel postgres setup instruction can be removed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done deepak
``` | ||
pip install gevent | ||
celery -A <module> worker -l info -P eventlet | ||
``` | ||
If any issues comes for eventlet , install event let as well |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should be gevent and eventlet right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed it
python3 -m venv <virtual environment name> | ||
<virtual environment name >/Scripts/activate | ||
``` | ||
Remove '<>' and give your environment name in the command. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can remove this sentence
For Windows: | ||
|
||
Perform the below steps from the root directory of the project | ||
|
||
``` | ||
pip install gevent | ||
|
||
pip install eventlet | ||
|
||
celery -A <module> worker -l info -P eventlet | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rajxzel modify this section to indicate that either gevent or eventlet or a solo pool can be used
Added some points for installation purpose of windows users