Replies: 1 comment
-
|
Has anyone cooked up a Chocolatey package yet? https://chocolatey.org/ |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I've run these steps on a virtual Windows machine and have been able to get Khoj up and running. The steps below worked for me:
Prerequisites
python --version. If you don't, install the latest version from here.py -m ensurepip --upgrade.Quick start
pip install khoj-assistantkhojInstallation in a Virtual Environment
Use this if you want to install with a virtual environment. This will make it much easier to manage your dependencies. You can read more about virtual environments here.
Run as Administratorprivileges.mkdir khoj && cd khoj && py -m venv .venv.\.venv\Scripts\activate. If you get a permissions error, then runSet-ExecutionPolicy -ExecutionPolicy RemoteSigned.pip install khoj-assistantkhojBeta Was this translation helpful? Give feedback.
All reactions