浏览代码

Update README.md (#403)

Robert Brennan 1 年之前
父节点
当前提交
4882cb6a66
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      README.md

+ 4 - 0
README.md

@@ -41,6 +41,10 @@ python -m pipenv install -v
 python -m pipenv shell
 uvicorn opendevin.server.listen:app --port 3000
 ```
+If `pipenv` doesn't work for you, you can also run:
+```
+python -m pipenv requirements > requirements.txt && python -m pip install -r requirements.txt
+```
 
 Then, in a second terminal, start the frontend:
 ```bash