如果您拥有Node项目的源代码,那么npm link
命令会安装它,使您所做的任何更改都适用于所有地方而无需重新安装。
npm link旨在安装开发包并实时查看更改,而无需继续重新安装。
https://www.npmjs.org/doc/misc/npm-developers.html#link-packages
Python项目是否有模拟?
答案 0 :(得分:1)
是,pip install -e .
或python setup.py develop
请参阅http://pip.readthedocs.org/en/latest/reference/pip_install.html#editable-installs