I am using a python package called networkx. I write some customized functions in this package. It works well as long as I do not update this package, or change the conda environment. But I am sure this is not the right way to do it. My question is quite similiar to this one but I am using conda .
I am wondering can I use conda to achieve similiar result? What does the'develop mode' mean? Is it just of folder of this package? Also, if I install it in my project foder, what will happen to the packages that rely on this package? When I install some other packages, they will also install this networkx (such as omnx). So when I import networkx as nx
, which networkx I am importing?
A step by step guide is really appreciated!