Slide 12
Slide 12 text
Module lookup
If it's not in the python path, it just won't import.
>
>
> p
p
r
i
n
t
(
s
y
s
.
p
a
t
h
)
[
'
'
,
'
/
u
s
r
/
l
i
b
/
p
y
t
h
o
n
3
5
.
z
i
p
'
,
.
.
.
'
/
u
s
r
/
l
i
b
/
p
y
t
h
o
n
3
/
d
i
s
t
p
a
c
k
a
g
e
s
'
]
Explicitly bring a module inside your path
>
>
> i
m
p
o
r
t s
y
s
>
>
> s
y
s
.
p
a
t
h
.
a
p
p
e
n
d
(
'
/
a
b
s
o
u
l
e
/
p
a
t
h
/
t
o
/
m
o
d
u
l
e
'
)
12