If you are a Python developer, you might have encountered the error message “NameError: name ‘os’ is not defined” at some point in your coding journey. This error occurs when you try to use the os
module in your code, but Python cannot find it.

In this tutorial, we will discuss the common causes of this error and how to fix it.
Why does the NameError: name 'os' is not defined
error occur?
This error occurs when you try to use the os
module in your Python code, but Python cannot find the os
module in its namespace. The following are some of the scenarios in which this error usually occurs.
- You have not imported the os module.
- You have imported the os module using a different name.
How to fix the NameError: name 'os' is not defined
?
The os
module in Python provides a way of using operating system dependent functionality like reading or writing to the file system, creating and managing processes, etc. It provides a portable way of using operating system dependent functionality. You can import the os
module in your Python code using the following statement:
import os
Once you have imported the os
module, you can use its various functions and attributes to interact with the operating system.
Since this module is part of the Python Standard Library, you don’t need to separately install it. You can simply import it and start using it.
Let’s now look at the above scenarios that may result in the above error in detail.
The os
module is not imported
It can happen that you are trying to use the os
module without even importing it. This is because Python does not recognize a library and its functions until it is imported into the code.
For example, let’s try to use the os
module without importing it and see what we get.
# note that the os module is not imported # get the current working directory current_dir = os.getcwd() # print the current working directory print(f"The current working directory is: {current_dir}")
Output:
--------------------------------------------------------------------------- NameError Traceback (most recent call last) Cell In[1], line 4 1 # note that the os module is not imported 2 3 # get the current working directory ----> 4 current_dir = os.getcwd() 6 # print the current working directory 7 print(f"The current working directory is: {current_dir}") NameError: name 'os' is not defined
We get a NameError
stating that the name os
is not defined. To use the os
library, you need to import it first.
import os # Get the current working directory current_dir = os.getcwd() # Print the current working directory print(f"The current working directory is: {current_dir}")
Output:
The current working directory is: /Users/piyush/Documents/DSP/Tutorials/Article
Here, we are importing the os
module first and then using it to get the current working directory using the os.getcwd()
function. You can see that we did not get any errors here.
The os
module is imported using a different name
If you import the os
module using a different name, for example import os as opsys
, and then try to use the name “os” to use it, you will get a NameError
because the name “os” is not defined in your current namespace.
Let’s look at an example.
import os as opsys # Get the current working directory current_dir = os.getcwd() # Print the current working directory print(f"The current working directory is: {current_dir}")
Output:
--------------------------------------------------------------------------- NameError Traceback (most recent call last) Cell In[1], line 4 1 import os as opsys 3 # Get the current working directory ----> 4 current_dir = os.getcwd() 6 # Print the current working directory 7 print(f"The current working directory is: {current_dir}") NameError: name 'os' is not defined
We get a NameError: name 'os' is not defined
. This is because we have imported the os
module with the name opsys
but we’re trying to use it using the name os
.
To fix this error, you can either access os
using the name that you have used in the import statement or import os
without an alias. Note that generally, the convention is to import the os module without any aliases – import os
, and it is recommended that you follow this convention as it makes your code more standardized and readable to other developers.
Conclusion
In conclusion, the “NameError: name ‘os’ is not defined” error can be frustrating when trying to run Python code that uses the os module. However, by following the steps outlined in this tutorial, you should now have a better understanding of what causes this error and how to fix it. Remember to always import the necessary modules at the beginning of your code and to check for typos or syntax errors. With these tips in mind, you should be able to overcome this error and continue coding with confidence.
You might also be interested in –