Files
freeCodeCamp/curriculum/challenges/chinese/09-information-security/python-for-penetration-testing/developing-an-nmap-scanner-part-1.md

31 lines
452 B
Markdown
Raw Normal View History

---
id: 5ea9997bbec2e9bc47e94db1
challengeType: 11
videoId: jYk9XaGoAnk
---
## Description
<section id='description'>
</section>
## Tests
<section id='tests'>
```yml
question:
text: |
What is the correct command to install the Python 3 version of the `python-nmap` library?
answers:
- |
`sudo apt install python-nmap`
- |
`pip install python-nmap`
- |
`pip3 install python-nmap`
solution: 3
```
</section>