我是C ++软件包的新手,并且正在使用Visual Studio生成软件包。我已经成功完成了该操作,但是无法在命令行中运行该程序包的功能。
错误-
'graphgen' is not recognized as an internal or external command,
operable program or batch file.
我正在遵循此链接中的说明-
https://snap.stanford.edu/snap/install.html
它说的地方-
如上所示,在编译代码之后,就可以执行它。这里以graphgen应用程序为例。
要运行graphgen示例,请打开命令行应用程序并执行以下命令:
cd examples/graphgen ./graphgen -g:w -n:1000 -k:4 -p:0.1 -o:smallworld.txt
该命令生成一个Watts-Strogatz小世界图,其中每个节点都连接到k = 4个最近的节点,并且重新布线的概率为p = 0.1。
我该怎么办?