current_users = ['Andy', 'Brett', 'Cassie', 'Derek', 'Eric']
new_users = ['eric', 'greg', 'hank', 'ian', 'john', 'andy', 'frank']
new_users.sort()
for current_user in current_users:
current_user == current_user.lower()
for new_user in new_users:
if new_user == current_user:
print(f"\n{new_user}, Please enter a new username!")
else:
print(f"\n{new_user}, Username is available.")
您好专家
从netmiko import ConnectHandler命令申请后,我遇到了以上错误。
设置-Windows 10,Python 3.7,Netmiko已安装。 PC中没有其他名为netmiko.py的文件。
请提出解决方案。
答案 0 :(得分:0)
要使用Netmiko,您需要处于与安装netmiko相同的python环境中。
我看到您安装了Windows 10和Python 3.7,但是用于调用Netmiko的python是2.7。您可以从目录名称C:\Python27\lib\site-packages\netmiko\__init__.py
的“ Python27”中分辨出来。
运行Python 3.7 Shell,然后重试该命令。确保在环境中正确安装了Netmiko。
要验证是否已安装netmiko,请键入help("modules")
以检索所有已安装软件包的列表。如果已正确安装Netmiko,则应该在此处看到它。
Python 3.7.5 (tags/v3.7.5:5c02a39a0b, Oct 15 2019, 00:11:34) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> help("modules")
Please wait a moment while I gather a list of all available modules...
---- output omitted ----
Cryptodome bdb gc pyexpat
__future__ binascii genericpath pygments
_string codecs netaddr tabnanny
_strptime codeop netapp tarfile
_struct collections netmiko telnetlib
_symtable colorama netmiko_globals tempfile
_testbuffer colorsys netrc terminal_server
_testcapi compileall nntplib test
_testconsole concurrent nt textfsm
_testimportmultiple configparser ntpath textwrap
_testmultiphase contextlib nturl2path this
_textfsm contextvars numbers threading
我希望这会有所帮助
答案 1 :(得分:0)
运行:python3
以访问python 3.5+终端。
>>>from netmiko import ConnectHandler