我正在尝试使用我的python django应用程序安装mongodb_engine,但是我收到此错误
Cannot find command 'git'
我正在尝试使用mongodb文档中的这个命令。 http://django-mongodb-engine.readthedocs.org/en/latest/topics/setup.html
pip install git+https://github.com/django-nonrel/django@nonrel-1.5
我认为这里的git导致了问题,因为项目存储在git repo中。有没有办法安装git来运行这个pip命令?我尝试过多种来源,但无法让它发挥作用。
答案 0 :(得分:10)
首先在Windows中安装git。然后将其安装箱路径添加到Windows的环境路径中。然后,您将在命令提示符下全局找到git命令。这可以解决你的问题。
答案 1 :(得分:3)
如果您使用的是Anacoda,那么您可以试试这个
{
"name": "MyNewProject",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"npm": "^5.8.0",
"react": "16.3.0-rc.0",
"react-native": "0.54.4",
"react-native-image-picker": "^0.26.7",
"react-native-maps": "^0.20.1"
},
"devDependencies": {
"babel-jest": "22.4.3",
"babel-preset-react-native": "4.0.0",
"jest": "22.4.3",
"react-test-renderer": "16.3.0-rc.0"
},
"jest": {
"preset": "react-native"
}
}
答案 2 :(得分:1)
将git.exe的路径添加到名为' path'的Windows环境变量中。 我的git.exe位于' C:\ Users \ LW \ AppData \ Local \ GitHub \ PortableGit_c2ba306e536fdf878271f7fe636a147ff37326ad \ bin \ git.exe'的路径中。您可以在类似的文件夹路径中找到您的exe文件。
答案 3 :(得分:0)
您可以安装git并使用系统变量path中的git目录配置路径。