<div dir="ltr"><div>So I was trying to install swift 3 (RC3) on a Ubuntu 14.04 LTS (64 bits) laptop, but get an REPL missing error.</div><div><br></div><div># What happened</div><div>```bash</div><div>cd /usr/local/lib</div><div>tar xvf swift-3.0-PREVIEW-3-ubuntu14.04.tar.gz</div><div>sudo ln -s swift-3.0-PREVIEW-3-ubuntu14.04 swift</div><div>```</div><div><br></div><div>then, created &quot;/etc/profile.d/swift.sh&quot; with following content:</div><div>```bash</div><div>export SWIFT_HOME=/usr/local/lib/swift</div><div>export PATH=$SWIFT_HOME/usr/bin:$PATH</div><div>export LD_LIBRARY_PATH=$SWIFT_HOME/usr/lib:$LD_LIBRARY_PATH</div><div>export LIBRARY_PATH=$SWIFT_HOME/usr/lib:$LIBRARY_PATH</div><div>```</div><div><br></div><div>then, &#39;source&#39; the .sh file in a terminal and start `swift` :</div><div>```bash</div><div>source /etc/profile.d/swift.sh</div><div>swift</div><div>```</div><div><br></div><div>and get following error:</div><div>```bash</div><div>error: REPL executable does not exist: &#39;/usr/local/bin/repl_swift&#39;</div><div>```</div><div><br></div><div>However, &#39;swift --version&#39; works with following output:</div><div>```bash</div><div>Swift version 3.0 (swift-3.0-PREVIEW-3)</div><div>Target: x86_64-unknown-linux-gnu</div><div>```</div><div><br></div><div># Try to solve</div><div>Thoughts there are some steps may be missed, so I re-checked the </div><div>docs on <a href="http://swift.org">swift.org</a> and <a href="http://swift.org/lldb">swift.org/lldb</a> , but no lucks. Neither does the</div><div>blogs I found on how to set up Swift on Ubuntu OS.</div><div><br></div><div>(One can just create a sybolic link of repl_swift under /usr/local/bin, but it bring more works to uninstall/reconfigure Swfit dev env)</div><div><br></div><div>Did anyone have met this before? Anything I can try? Or,possibly,  there are sth to be done with the release itself...</div></div>