# UndefVarError: \<some-module\> not defined

**URL:** https://discourse.julialang.org/t/undefvarerror-some-module-not-defined/17967
**Category:** New to Julia
**Created:** [November 25, 2018, 1:32am UTC](https://discourse.julialang.org/t/undefvarerror-some-module-not-defined/17967 "2018-11-25T01:32:24Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![hedgehog](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/hedgehog/32/6214_2.png) [@hedgehog](https://discourse.julialang.org/u/hedgehog)
#### Post date: [November 25, 2018, 1:32am UTC](https://discourse.julialang.org/t/undefvarerror-some-module-not-defined/17967/1 "2018-11-25T01:32:24Z")

</div>

Hi, I’m very new to Julia and have hit a blocker. Appreciate any help on how to start identifying the cause.  
The following example relates to Documenter and Travis, but I have similar issues with the logging facility in tests

The only possible wrinkle in my installation is that Julia was installed using the jlenv.jl  
scripts. However I can’t identify anything that is not working apart from the error below.

```julia
julia> using Documenter; Travis.genkeys("MyPkg") (edited)
ERROR: UndefVarError: Travis not defined

julia> using Pkg; Pkg.status()
Project MyPkg v0.1.0
   Status `~/src/MyPkg.jl/Project.toml`
 [e30172f5] Documenter v0.20.0

```

Julia `versioninfo()` details

```julia
julia> versioninfo()
Julia Version 1.0.2
Commit d789231 (2018-11-08 20:11 UTC)
Platform Info:
  OS: Linux (x86_64-linux-gnu)
  CPU: Intel(R) Celeron(R) CPU G550T @ 2.20GHz
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-6.0.0 (ORCJIT, sandybridge)

```

Appreciate any help, hints or tips

---

<div class="post-metadata">

### Author: ![y4lu](https://avatars.discourse-cdn.com/v4/letter/y/47e85d/32.png) [@y4lu](https://discourse.julialang.org/u/y4lu)
#### Post date: [November 25, 2018, 2:27am UTC](https://discourse.julialang.org/t/undefvarerror-some-module-not-defined/17967/2 "2018-11-25T02:27:42Z")

</div>

It’s hiding in a sub-module

[https://juliadocs.github.io/Documenter.jl/stable/lib/public/#DocumenterTools.Travis](https://juliadocs.github.io/Documenter.jl/stable/lib/public/#DocumenterTools.Travis)

---

<div class="post-metadata">

### Author: ![hedgehog](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/hedgehog/32/6214_2.png) [@hedgehog](https://discourse.julialang.org/u/hedgehog)
#### Post date: [November 25, 2018, 8:54am UTC](https://discourse.julialang.org/t/undefvarerror-some-module-not-defined/17967/3 "2018-11-25T08:54:14Z")

</div>

Thanks, It appears I was following outdated instructions 🙂
