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
-
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-assistant
khoj
Installation 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 Administrator
privileges.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-assistant
khoj
Beta Was this translation helpful? Give feedback.
All reactions