# Importing glfw via vscode terminal gives error

**URL:** https://discourse.glfw.org/t/importing-glfw-via-vscode-terminal-gives-error/2724
**Category:** support
**Created:** [August 19, 2024, 7:21am UTC](https://discourse.glfw.org/t/importing-glfw-via-vscode-terminal-gives-error/2724 "2024-08-19T07:21:32Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![mihirp1998](https://yyz1.discourse-cdn.com/flex035/user_avatar/discourse.glfw.org/mihirp1998/32/960_2.png) [@mihirp1998](https://discourse.glfw.org/u/mihirp1998)
#### Post date: [August 19, 2024, 7:21am UTC](https://discourse.glfw.org/t/importing-glfw-via-vscode-terminal-gives-error/2724/1 "2024-08-19T07:21:33Z")

</div>

Hi

I’m new to this community. I am having some weird experience and finding it difficult to debug:

When i import glfw via python, on my default terminal everything works fine. However when i import it via the vscode terminal, i get the following error. I’m sure i’m calling the same python binary etc, which is why it’s unclear to me why i get this error :

```auto
import glfw

Warning: 'c' is not in the list of known options, but still passed to Electron/Chromium.
Warning: 'c' is not in the list of known options, but still passed to Electron/Chromium.
Warning: 'c' is not in the list of known options, but still passed to Electron/Chromium.
Warning: 'c' is not in the list of known options, but still passed to Electron/Chromium.
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/mihir/micromamba/lib/python3.10/site-packages/glfw/ __init__.py", line 43, in <module>
    raise ImportError("Failed to load GLFW3 shared library.")
ImportError: Failed to load GLFW3 shared library.

```

Importing other packages seems to be working fine from the vscode terminal, i just get this error while importing glfw. Any help to debug this would be very helpful thanks!
