# How to import module namespaces from julia session with PackageCompiler?

**URL:** https://discourse.julialang.org/t/how-to-import-module-namespaces-from-julia-session-with-packagecompiler/78785
**Category:** General Usage
**Tags:** question, package-compiler
**Created:** [March 31, 2022, 7:45am UTC](https://discourse.julialang.org/t/how-to-import-module-namespaces-from-julia-session-with-packagecompiler/78785 "2022-03-31T07:45:43Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![YongHee-Kim](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/yonghee-kim/32/5965_2.png) [@YongHee-Kim](https://discourse.julialang.org/u/YongHee-Kim)
#### Post date: [March 31, 2022, 7:45am UTC](https://discourse.julialang.org/t/how-to-import-module-namespaces-from-julia-session-with-packagecompiler/78785/1 "2022-03-31T07:45:43Z")

</div>

I’m trying to distribute my package with a PackageCompiler, so my users can run my package by just clicking the executable.

And I also need to use the REPL, because I want my users to play with packages with commands I’ve exposed them to use. So I figured I can do that by using `bin/julia.exe` from compiled app. Which works, but I couldn’t import a package namespace, I need to type in package name every time I want to do something with compiled package.

Is there any solution for this?

 ![image](https://global.discourse-cdn.com/julialang/original/3X/b/c/bc70270c913d4a688c31ebb42578607d2d606c95.png)

---

<div class="post-metadata">

### Author: ![YongHee-Kim](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/yonghee-kim/32/5965_2.png) [@YongHee-Kim](https://discourse.julialang.org/u/YongHee-Kim)
#### Post date: [March 31, 2022, 7:57am UTC](https://discourse.julialang.org/t/how-to-import-module-namespaces-from-julia-session-with-packagecompiler/78785/2 "2022-03-31T07:57:00Z")

</div>

Answering to my self 😅. Ok `using Main.TextAdventure` works. because it’s already loaded

![화면 캡처 2022-03-31 165449](https://global.discourse-cdn.com/julialang/original/3X/7/3/73a7bc6d224b2526fa70264069c622240136500b.png)
